VideoQuality

data class VideoQuality(id: String, label: String?, bitrate: Int, codec: String?, frameRate: Float, width: Int, height: Int) : Quality

Represents a video quality.

Constructors

VideoQuality
Link copied to clipboard
fun VideoQuality(id: String, label: String?, bitrate: Int, codec: String?, frameRate: Float, width: Int, height: Int)

Properties

bitrate
Link copied to clipboard
open override val bitrate: Int
The bitrate of the media quality.
codec
Link copied to clipboard
open override val codec: String?
The codec of the media quality.
frameRate
Link copied to clipboard
val frameRate: Float
The frame rate of the video quality.
height
Link copied to clipboard
val height: Int
The height of the video quality.
id
Link copied to clipboard
open override val id: String
The id of the media quality.
label
Link copied to clipboard
open override val label: String?
The label of the media quality that should be exposed to the user.
width
Link copied to clipboard
val width: Int
The width of the video quality.